home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / AOF / DECAOF / decaof / io_h < prev    next >
Text File  |  1992-11-20  |  827b  |  26 lines

  1. /*
  2.  * file input/output function prototypes
  3.  *
  4.  * Andy Duplain, BT Customer Systems, Brighton, UK.  duplain@btcs.bt.co.uk
  5.  */
  6.  
  7. #ifndef __IO_H
  8. #define __IO_H
  9.  
  10. #include "cproto.h"
  11.  
  12. Ferror check_stream P__((FILE *fp));
  13. Byte read_byte P__((FILE *ifp));
  14. Halfword read_halfword P__((FILE *ifp));
  15. Word read_word P__((FILE *ifp));
  16. int free_chunk_memory P__((char *ptr));
  17. struct chunkhdr *read_chunkhdr P__((FILE *ifp));
  18. struct chunkent *read_chunkents P__((FILE *ifp, struct chunkhdr *hdr));
  19. char *read_stringtab P__((FILE *ifp, struct chunkent *strent));
  20. struct symbol *read_symboltab P__((FILE *ifp, struct chunkent *strent, int numsyms));
  21. char *read_ident P__((FILE *ifp, struct chunkent *ident));
  22. struct aofhdr *read_aofhdr P__((FILE *ifp, struct chunkent *hdrent));
  23. struct reloc *read_reloc P__((FILE *ifp));
  24.  
  25. #endif /* __IO_H */
  26.